home *** CD-ROM | disk | FTP | other *** search
/ Hardcore Gamer Resource Kit / Hardcore Gamer Resource Kit - Disc 2.iso / Pc / D_E / EUROPACH.ZIP / Europch1.exe / PATCH.BAT < prev   
DOS Batch File  |  1996-06-14  |  600b  |  26 lines

  1. @echo off
  2. echo.
  3. echo Euro 96 Wireplay Patch Program
  4. echo.
  5. echo This program will overwrite your current Euro 96 files.
  6. choice Are you sure you want to continue 
  7. if ERRORLEVEL 2 goto quit
  8. echo Patching Euro 96...
  9. lpatch eurorend.dat euroren1.dat
  10. if ERRORLEVEL 1 goto error
  11. move euroren1.dat eurorend.dat > NUL
  12. move euro961.exe euro96.exe > NUL
  13. echo Patch complete
  14. del *.pch > NUL
  15. del lpatch.exe > NUL
  16. goto exit
  17. :error
  18. del *.pch > NUL
  19. del lpatch.exe > NUL
  20. if EXIST euroren1.dat del euroren1.dat > NUL
  21. if EXIST euro961.exe del euro961.exe > NUL
  22. :quit
  23. echo Patch aborted
  24. :exit
  25.  
  26.